Skip to content

Server check guard change 7 x#4100

Closed
YanaDePauw wants to merge 3 commits intoDSpace:dspace-7_xfrom
atmire:server-check-guard-change-7-x
Closed

Server check guard change 7 x#4100
YanaDePauw wants to merge 3 commits intoDSpace:dspace-7_xfrom
atmire:server-check-guard-change-7-x

Conversation

@YanaDePauw
Copy link
Copy Markdown
Contributor

References

Fixes #4074

Description

After getting rid of the of /server/api request for #3961, one more /server/api check was found in the ServerCheckGuard that will be performed with every load to check if the server is not down.

This can still affect performance when a slower REST API is used.

This PR removes the initial call on load to check if the backend is up. Instead it will only perform this call if a request fails with a 500 or a 0 (Unknown) status. If the server request then fails, a redirect is done to the 500 page.

The additional check and redirect are performed in the request effects but will not hold up the rest of the object handling.

Instructions for Reviewers

To test this feature, set up a local backend and frontend where you can turn the backend on and off.

  1. In Angular, test on the initial load that no extra check is performed to the api endpoint to verify that it is running.
  2. Verify that the repository still runs as it normally does.
  3. Turn off the backend and verify that on the next (non-cached) request you are redirected to a 500 page.
  4. Turn the backend on again and click the "return to homepage" button.
  5. Verify that you are redirected to the homepage and you can browse the repository again.
  6. Turn the backend off again and hard refresh the page
  7. Verify that you are redirected to the 500 page again.

Checklist

  • My PR is created against the main branch of code (unless it is a backport or is fixing an issue specific to an older branch).
  • My PR is small in size (e.g. less than 1,000 lines of code, not including comments & specs/tests), or I have provided reasons as to why that's not possible.
  • My PR passes ESLint validation using npm run lint
  • My PR doesn't introduce circular dependencies (verified via npm run check-circ-deps)
  • My PR includes TypeDoc comments for all new (or modified) public methods and classes. It also includes TypeDoc for large or complex private methods.
  • My PR passes all specs/tests and includes new/updated specs or tests based on the Code Testing Guide.
  • My PR aligns with Accessibility guidelines if it makes changes to the user interface.
  • My PR uses i18n (internationalization) keys instead of hardcoded English text, to allow for translations.
  • My PR includes details on how to test it. I've provided clear instructions to reviewers on how to successfully test this fix or feature.
  • If my PR includes new libraries/dependencies (in package.json), I've made sure their licenses align with the DSpace BSD License based on the Licensing of Contributions documentation.
  • If my PR includes new features or configurations, I've provided basic technical documentation in the PR itself.
  • If my PR fixes an issue ticket, I've linked them together.

@alanorth alanorth changed the base branch from main to dspace-7_x March 19, 2025 17:59
@github-actions
Copy link
Copy Markdown

This pull request has been automatically marked as stale because it has not had
activity in one year. It will be closed in 14 days if no further activity occurs.

Allowing pull requests to close as stale helps us filter out old work that is no longer
relevant and helps developers focus on reviewing current work.

All pull requests closed by this bot act like normal pull requests;
they can be searched for, commented on or reopened at any point.

If these changes are still relevant then please comment and/or rebase your PR based on the
latest DSpace code. This will remove the stale status and notify us to assign a reviewer
for your PR.

@github-actions github-actions Bot added the stale This issue or PR is stale because it has not been updated in a long time. label Mar 22, 2026
@github-actions
Copy link
Copy Markdown

github-actions Bot commented Apr 5, 2026

This pull request has been closed automatically. If these changes are still relevant
then please re-open this pull request with a comment and rebase your PR based on the latest
DSpace code. This will notify us to assign a reviewer to your PR.

@github-actions github-actions Bot closed this Apr 5, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

stale This issue or PR is stale because it has not been updated in a long time.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Performance: unnecessary ServerCheckGuard api call

1 participant